Can't find what you're looking for?
Hit the online chat button bottom left, or click the contact Kademi button below.
Kademi has two ways of sending emails. Emails can be templated, so they can dynamically display information relevant to each recipient.
This can be a plain address like someone@somewhere.com, or it can be in the personalised form:
"Joe Bloggs" <joe@bloggs.com>
You can use templating (see below) for subject and body. As example is:
Hello @{profile.firstName}, thank you for registering!
Email body content uses the MVEL templating language, for example @{profile.firstName} will output the recipients first name.
For example a donation page might respond with an email template like this:
@{profile.firstName}, thank you for your payment. Thank you so much. Your donation summary Name: @{profile.firstName} @{profile.surName} Amount:$ @{event.attributes.payment.amount} Frequency: Monthly Invoice number: @{event.attributes.payment.invoiceNum} Receipt number: @{event.attributes.payment.transactionID} Donation date: @{event.attributes.payment.createdDate}
There are several objects available to templates
As mentioned above there is the capability to add auto-login tokens to links. For example, to add a link inline in an email you would use this:
<a href="http://@{website.domainName}/online/comingevent.html?@{login}" style="color:#a5b64f;"> Register to attend now! </a>OR to add an autologin link into the emailBase template, the syntax is slightly different. The base template uses velocity templating language instead of MVEL, and the login token has to be referenced through the page model object:
<a href="http://$page.closest('website').domainName/profile?$page.model.login"> <small>To unsubscribe please login to your profile page</small> </a>
This will generate a login token for each specific user. What this means is that when a user clicks a link they will be logged in to the website automatically, ie they will not be presented with a login form
Note that login tokens are only valid for a fixed period of 7 days
Hit the online chat button bottom left, or click the contact Kademi button below.